// JavaScript SAVD


function Open_Window(strLink, intWidth, intHeight)
{
	var intTop = (screen.height / 2) - (intHeight /2)
	var intLeft = (screen.width / 2) - (intWidth / 2)
	
	window.open(strLink,'detail', 'width=' + intWidth + ',height=' + intHeight + ',top=' + intTop + ',left=' + intLeft + ',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no');

}

function Open_Top(strLink, intWidth, intHeight)
{
	var intLeft = (screen.width / 2) - (intWidth / 2)
	
	window.open(strLink,'detail', 'width=' + intWidth + ',height=' + intHeight + ',top=' + '0' + ',left=' + intLeft + ',toolbar=no,location=no,status=no,menubar=no,scrollbars=auto,resizable=yes');

}

function Open_Scroll_Window(strLink, intWidth, intHeight)
{
	var intTop = (screen.height / 2) - (intHeight /2)
	var intLeft = (screen.width / 2) - (intWidth / 2)
	
	window.open(strLink,'detailscroll', 'width=' + intWidth + ',height=' + intHeight + ',top=' + intTop + ',left=' + intLeft + ',toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars');
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}