function ConfirmLink(Question,Link)
{
	if (confirm(Question))
	{
		self.location = Link;
	}
}

function OpenLink(Link)
{
	self.location = Link;
}

function WindowPopup(URL,W,H,bResizable,bScrollbars) 
{
	X = (screen.width) ? (screen.width-W)/2 : 50;
	Y = (screen.height) ? (screen.height-H)/2 : 50;

	WndCreateString = "width="+W+",height="+H+",left="+X+",top="+Y;
	if (bResizable)
		WndCreateString += ",resizable";
	if (bScrollbars)
		WndCreateString += ",scrollbars";
	
	newwindow =  window.open(URL,'',WndCreateString);

	if (newwindow && !newwindow.closed)
	{
		newwindow.focus();
		newwindow.CallbackWindow = window;
	}
}
