draging = 0;

function openwin(sUrl, iW, iH, iL, iT) 
{
/*
	var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
	
	if ( InternetExplorer )
	{
		width = iW;
		height = iH;

		var w = window.screen.width;
		var h = window.screen.height;
		var l = (iL != null) ? iL : (w-width)/2;
		var t = (iT != null) ? iT : (h-height)/2;
	
		egowin = window.open(sUrl, 'nohopeforjoy', 'fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0');
		//egowin.blur();	
		egowin.resizeTo(width,height);
		egowin.moveTo(l,t);
		egowin.focus();
	}
	else
	{ */
		egowin = window.open(sUrl, 'nohopeforjoy', 'toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,width=960,height=256');
//	}
}

function open_guestbook(sUrl, w,h, l,t)
{
	win = window.open(sUrl, 'guests', 'fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0');
	
	win.blur();
	win.resizeTo(w,h);
	win.moveTo(l,t);
	win.focus();	
}

