// open window to display banners

function MktgWin(url,size)
{
	if(size==1)		var prefs = "width=485,height=72,resizable=no,scrollbars=no,toolbar=no,statusbar=no";
	else if(size==2)	var prefs = "width=399,height=528,resizable=no,scrollbars=no,toolbar=no,statusbar=no";
	else if(size==3)	var prefs = "width=490,height=390,resizable=no,scrollbars=no,toolbar=no,statusbar=no";
	var MktgWindow = window.open(url,'pop', prefs);
}
