/* Popup window */
function showPopup( theUrl ) {
	theWindow =	window.open( theUrl, "", "width=800,height=500,toolbar,scrollbars=yes" );
	//theWindow.moveTo(0,0);
	//popup = window.open("popup-page.html","","height=175,width=300,scrollbars=auto");

}

function showPopupModify( theUrl, winWidth, winHeight ) {
	var theWindow =	window.open( theUrl, "", "width="+winWidth+",height="+winHeight+",toolbar,scrollbars=auto" );
	theWindow.moveTo(10,10);
}