var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=500,width=700,left=100,top=50,resizable=yes,scrollbars=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}
function popvideo(url)
{
	newwindow=window.open(url,'name','height=775,width=800,left=100,top=50,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
function popwebpage(url)
{
	newwindow=window.open(url,'name','height=600,width=800,left=100,top=50,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
