var popUp;

function CloseWindow()
{
	self.close();
}

function openNewWindowPaducahGallery(){
	var w = 400;
	var h = 335;
	var winLeft = (screen.width - w) / 2;
	var winUp = (screen.height - h) / 2;
	var features = "width=" + w + ",height=" + h + ",status=no,left=" + winLeft + ",top=" + winUp;
	popUp = window.open("../GalleryTest.aspx?GID=2", "_blank", features);
}

function openNewWindowCapeVIGallery(){
	var w = 400;
	var h = 335;
	var winLeft = (screen.width - w) / 2;
	var winUp = (screen.height - h) / 2;
	var features = "width=" + w + ",height=" + h + ",status=no,left=" + winLeft + ",top=" + winUp;
	popUp = window.open("../GalleryTest.aspx?GID=3", "_blank", features);
}


function openNewWindowCapeHIGallery(){
	var w = 400;
	var h = 335;
	var winLeft = (screen.width - w) / 2;
	var winUp = (screen.height - h) / 2;
	var features = "width=" + w + ",height=" + h + ",status=no,left=" + winLeft + ",top=" + winUp;
	popUp = window.open("../GalleryTest.aspx?GID=4", "_blank", features);
}


function openNewWindowStLouisGallery(){
	var w = 400;
	var h = 335;
	var winLeft = (screen.width - w) / 2;
	var winUp = (screen.height - h) / 2;
	var features = "width=" + w + ",height=" + h + ",status=no,left=" + winLeft + ",top=" + winUp;
	popUp = window.open("../GalleryTest.aspx?GID=1", "_blank", features);
}