// JavaScript Document
function chgCover(id){
	document.images['cover'].src = id	
}

function openPicture(id){
	NewWindow=window.open(id,'newWin','width=600,height=800,left=0,top=0,toolbar=No,location=No,scrollbars=Yes,status=No,resizable=No,fullscreen=No');
	screen_height = window.screen.availHeight; 
	screen_width = window.screen.availWidth; 
	left_point = parseInt(screen_width/2)-(800/2);
}
