
//<a href="javascript:poptastic('poppedexample.html');">Pop it</a>
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','width=692,height=428');
	if (window.focus) {newwindow.focus()}
}

function popcustomer(url)
{
	newwindow=window.open(url,'name','width=400,height=340');
	if (window.focus) {newwindow.focus()}
}

