var newwindow;
function pop_open(url)
{
	newwindow=window.open(url,'name','height=288,width=480');
	if (window.focus) {newwindow.focus()}
}

