function pop(url,nom,wid,hei,scroll) {	var ns4 = (document.layers) ? true : false;	var ie4 = (document.all) ? true : false;	var dom = (document.getElementById) ? true : false;	var xMax, yMax, xOffset, yOffset;;	if (ie4 || dom) {		xMax = screen.width;		yMax = screen.height;	} else if (ns4) {		xMax = window.outerWidth;		yMax = window.outerHeight;	} else {		xMax = 1024;		yMax = 768;	}	xOffset = (xMax - wid)/2;	yOffset = (yMax - hei)/2;	window.open(url,nom,'width='+wid +',height='+hei +',screenX='+xOffset +',screenY='+yOffset +',top='+yOffset +',left='+xOffset +',scrollbars='+(scroll ? scroll : 0)+',resizable=yes');
}

function change(wid,hei) {
	window.resizeTo(wid,hei);
}

function pub() {
banners = new Array(3);
banners[0] = "emericaskate";
banners[1] = "esfootwear";
banners[2] = "etnies";
index = Math.floor(Math.random() * banners.length);
selected = banners[index];
document.write("<object type=\"application/x-shockwave-flash\" data=\"banners/load.swf?path=banners/" + selected + ".swf\" width=\"468\" height=\"60\">");
document.write("<param name=\"banners/load.swf?path=banners/" + selected + ".swf\" />");
document.write("</object>");
}
