// JavaScript Document

function launchKatyCharles(x,w,h) {
	window.open(x, "newwindow", "status=yes,height=" + h + ",width=" + w + ",scrollbars=yes,resizable=yes,toolbar=yes");
	self.status="";
}

function launch(x,w,h) {
	window.open(x, "newwindow", "status=no,height=" + h + ",width=" + w + ",scrollbars=no,resizable=yes,toolbar=no");
	self.status="";
}

function launch2(x,w,h) {
	window.open(x, "newwindow", "status=yes,height=" + h + ",width=" + w + ",scrollbars=yes,resizable=yes,toolbar=yes");
	self.status="";
}

function launch3(x,w,h) {
	window.open(x, "newwindow", "status=yes,height=" + h + ",width=" + w + ",scrollbars=yes,resizable=no,toolbar=no");
	self.status="";
}