function openLinkWindow(WinWidth,WinHeight,Link,WindowName,bars,resize,position,menubar,toolbar)
{
	if (position == 'center') {
		WindowLeft = Math.round((screen.width - WinWidth) / 2);
		WindowTop = Math.round((screen.height - WinHeight) / 2);
	} else {
		WindowLeft = 100;
		WindowTop = 120;
	}
	/*
	resize = 1;
	bars = 1;
	*/
	window.open(Link,WindowName,'left='+WindowLeft+',top='+WindowTop+',toolbar='+toolbar+',width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=1,menubar='+menubar+',scrollbars='+bars+',resizable='+resize+',copyhistory=0');
}


function openLinkWindowSpecial(Link,WindowName)
{
	WinWidth = 800;
	WinHeight = 600;
	WindowLeft = (screen.width - WinWidth) / 2;
	WindowTop = (screen.height - WinHeight) / 2;
	window.open(Link,WindowName,'left='+WindowLeft+',top='+WindowTop+',toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,copyhistory=0,fullscreen=no');
}

