
function popout(url,specs)
{
	window.open(url,'_blank',specs);
	if (window.focus) {newwindow.focus()}
}

/*


example HTML code:

<a href="javascript:popout('video.htm','width=640,height=522,resizable=yes');"></a>


*/