var newwindow;
function poptastic(url,stuff)
{
	newwindow=window.open(url,'name',stuff);
	if (window.focus) {newwindow.focus()}
}

function mynewwindow(url)
{
	newwindow=window.open("URL");
	
}

