<!--

function popupWindow(loc, x, y) {

	var urlString = String(loc);

	var xLength = (x ? x : 320);	//new window width, default = 320px
	var yLength = (y ? y : 200);	//new window height, default = 200px
	var xPosition = 50;			//pixels away from screen left edge
	var yPosition = screen.height - (yLength + 100);	//pixels away from screen top edge

	var newWindowString = "left=" + xPosition + ", top=" + yPosition + ", width=" + xLength + ", height=" + yLength + ", location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, toolbar=no";
	var pWindow = window.open(urlString, "pWindow", newWindowString);

	try {
		pWindow.focus();
	} catch (e) {
		//nothing
	}

	return;
}
//-->
