var popUp;

function CloseWindow()
{
	self.close();
}

function openNewWindowBrophy(){
	var w = 500;
	var h = 700;
	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("Brophy.htm", "_blank", features);
}

function openNewWindowElan(){
	var w = 500;
	var h = 750;
	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("Elan.htm", "_blank", features);
}

function openNewWindowMoondance(){
	var w = 700;
	var h = 750;
	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("Moondance.htm", "_blank", features);
}

function openNewWindowSunstone(){
	var w = 400;
	var h = 400;
	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("Sunstone.htm", "_blank", features);
}

function openNewWindowPalomaPresidio(){
	var w = 390;
	var h = 700;
	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("PalomaPresidio.htm", "_blank", features);
}

function openNewWindowSeleneMontecuto(){
	var w = 450;
	var h = 650;
	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("SeleneMontecuto.htm", "_blank", features);
}

