var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=600,width=900,location=1,status=1,scrollbars=1,toolbar=1,menubar=1');
    /*newwindow.moveTo(0,0);*/
	if (window.focus) {newwindow.focus()}
}



var vidwindow;
function poptasticvid(url)
{
	vidwindow=window.open(url,'name','height=325,width=400,location=0,status=0,scrollbars=0,toolbar=0,menubar=0');
    /*newwindow.moveTo(0,0);*/
	if (window.focus) {vidwindow.focus()}
}