function openMovieWindow(url_open)
{
	/* window.open(url_open, "MOV", "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, copyhistory=no, scrollbars=no, width=320, height=260"); */
	window.open(url_open, "MOV", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=320, height=260");
}

function openMusicWindow(url_open)
{
	var newWindow = window.open(url_open, "MP3", "location=no, directories=no, menubar=no, status=no, toolbar=no, copyhistory=no, scrollbars=no, width=320, height=5");		
}

/* for item pages */
function setImageUrl(imageUrl)
{
	/*document['itemImage'].src = imageUrl;*/
	
	var image0 = document.getElementById("itemImage");
    image0.src = imageUrl;
    
}

/* opens a window of specified dimensions with the image inside (click image to close) */
function OpenNewWindow(bigurl, width, height){	var newWindow = window.open("", "", "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height + ", scrollbars=no");	newWindow.document.writeln("<html>");    newWindow.document.writeln("<body style='margin: 0 0 0 0; background-color: rgb(120, 120, 120);'>");   	newWindow.document.writeln("<a href='javascript:window.close();' style='text-decoration: none; color: rgb(120, 120, 120);'>");    newWindow.document.writeln("<img src='" + bigurl + "' alt='Click to close' id='bigImage'/>");   	newWindow.document.writeln("</a>");    newWindow.document.writeln("</body></html>");    newWindow.document.close();}
