/* Javascript File */

function popup(URL, width, height)
{
	theWindow = window.open (URL, "photoWin", "width=" + width + ", height=" + height + ", resizable=yes, toolbar=no, location=no, directories=no, menubar=no")
	theWindow.focus()
}

function popupYahoo(URL)
{
	yahooWindow = window.open (URL, "photoWin", "width=1000, height=750, resizable=yes, toolbar=yes, location=yes, directories=yes, menubar=yes, scrollbars=yes")
	yahooWindow.focus()	
}
