﻿
function banner_openWindow(url, bNewWindow, nTop, nLeft, nWidth, nHeight, bToolbar)
{
	
	var sWidth = ""
	var sHeight = "";
	if (bNewWindow == "False")
	{
		return;
	}
	if(1*nWidth!=0)sWidth = ",width="+nWidth;
	if(1*nHeight!=0)sHeight = ",height="+nHeight;
	
	var winFeatures			= "top="+nTop+",left="+nLeft+sWidth+sHeight+",scrollbars=no,toolbar=no,resizable=yes";
	
	if(bToolbar=="True"){
		winFeatures			= "top="+nTop+",left="+nLeft+sWidth+sHeight+",scrollbars=yes,toolbar=yes,resizable=yes,location=yes,status=yes,menubar=yes";
	}
	
	
	var nw = window.open(url, 'banner_openWindow',winFeatures);
}