Shadowbox.init({
	language: 'en',
	players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv'],
	height:     375,
	width:      490
});

function openprofile(content){

	Shadowbox.open({
		content:  '<iframe style="margin:5px 0px 0px 5px;width:570px;height:620px;border:none;" src="profile.php?id='+ content +'" />',
        player:     "html",
        title:      "Profile",
        height:     630,
        width:      575		
	});

}; 

function openmovie(content){

	Shadowbox.open({
		content:  '<iframe style="margin:5px 0px 0px 5px;width:485px;height:365px;border:none;" src="movie.php?id='+ content +'" />',
        player:     "html",
        title:      "Movie",
        height:     375,
        width:      490		
	});

};

function openpicture(path, file){

	Shadowbox.open({
		content: '<img style="padding:8px 0px 0px 8px; height:600px;" src="'+path+file+'" alt="Image" />',
        player:     "html",
        title:      "Photograph",
        height:     618,
        width:      818	
	})
};