﻿// JScript File

function displayCenterPopup(url, name, width, height, scrollbar, toolbar, statusbar){
    var properties = 'scrollbars=' + scrollbar + ',toolbar=' + toolbar + ',status=' + statusbar;
	var iLeft = (window.screen.width - width) / 2;
	var iTop = (window.screen.height - height) / 2;
	
	window.open(url, name, properties + ',width=' + width + ',height=' + height + ',left=' + iLeft + ',top=' + iTop);
}

function openPopupPic(strPicture) { 
    window.open("../content/PopupPicture.html?" + strPicture, "Picture", "resizable=1,height=50,width=50"); 
}