﻿// JScript File
// open a popup window center screen
// author: p. jodoin
function PopUpWindow(sUrl, iWidth, iHeight, sScroll)
{
	
	var sWindowString;
	var dNew = new Date();
	var sRandName = dNew.getUTCMilliseconds();
	sRandName = sRandName.toString();

	var Xpos= (screen.availWidth - iWidth)/2;
	var Ypos= (screen.availHeight - iHeight)/2-10;

	if (sScroll == "")
		{
		sScroll = "no";
		}

	sWindowString = "width=" + iWidth + ",height=" + iHeight + ",screenX=" + Xpos + ",screenY="  + Ypos + ",toolbar=1,scrollbars=" + sScroll + ",location=1,directories=0,status=1,menubar=1,resizable=yes";
	newWindow = open(sUrl, sRandName, sWindowString);
	newWindow.moveTo(Xpos, Ypos);
	newWindow.location=sUrl;
 
}//nw()

// displays a slideshow image with id imgMain
// author: b. popova
function displayImage(imageGuid,albumGuid)
{
    //set the image to be displayed
    document.getElementById('ctl00_cphMainContent_imgMain').src = '/get_file.aspx?file=' + imageGuid + '&folder=' + albumGuid;
}//displayImage