
var win_detail = null;

function dgl_showpopup( url, target, w, h ) 
{
	var x = (screen.width - w) * 0.5;
	var y = (screen.height - h) * 0.5;

   	win_detail = window.open( url, target, "dependant=yes,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + w + ",height=" + h + ",top=" + y + ",left=" + x)
	win_detail.focus();

	return win_detail;

}

function openNL() 
{
	wx = 300;
	wy = 290;

	x = (screen.width - wx) * .5;
	y = (screen.height - wy) * .5;

	v = window.open( "http://www.develotec.com/newsletter/subscribe.php?category=frankysun", "_newsletter", "width=" + wx + ",height=" + wy + ",menubar=no,status=no,scrollbars=0,left=" + x + ",top=" + y );
	v.focus();
}
