// Marvtech JavaScript Document

var newwindow;
function popWindow(url)
{
	newwindow=window.open(url,'name','height=500,width=500, resizable=0, scrollbars=1');
	if (window.focus) {newwindow.focus()}
}

