function ImgOpen(ImgName,Width,Height){
	
	var Number = ImgOpen.arguments.length
	if (Number==1)
	{
	window.open("images/"+ImgName+".jpg","width=550")
	}
	else if(Number==3){
		window.open("images/"+ImgName+".jpg","","width="+Width+" height="+Height+" top=0 left=0 resizable=yes")
	}
}

function PageOpen(PageName,Width,Height){
	window.open(PageName,"","width="+Width+" height="+Height+" resizable=yes scrollbars=yes top=0 left=0")
		
}
