var scrW;
var scrH;
scrW = screen.width / 2;
scrH = screen.height / 2;

function popContent(gotoHere,h,w) {
	window.open(gotoHere,'contentWindow','width=' + w + ',height=' + h + ',top=' + (scrH-(h/2)) + ',left='+ (scrW-(w/2)) +',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
}