//参数
var workkkkkk=true;
if(workkkkkk){

openwindowcount = 0;

function openwindow(iturl, startx){
	var windiv = document.createElement('div');
	windiv.id="openwindows"+openwindowcount;
	openwindowcount++;
	windiv.innerHTML = "<table width='306' height='245' border='0' cellpadding='0' cellspacing='0' background='/images/ff.gif'><tr><td height='22' valign='top'></td></tr><tr><td align='center' valign='top'><iframe src='" + iturl +"' width='390' height='253' frameborder='no' border='0' marginwidth='0' marginheight='0' scrolling='no'></td></table>";


	//windiv.style.width = 5000;
	windiv.style.width = 300;
	windiv.style.zIndex=2;
	windiv.style.left = startx;
	windiv.style.top = 0;
	if(navigator.appName.indexOf("Microsoft",0) != -1)
		windiv.style.position="absolute";  //is ie
 	else
	  windiv.style.position="fixed"; //not ie
	document.body.appendChild(windiv);
	
}


//可以关闭 
function closewindows(){
	clearTimeout(openwintimer);
	for(i=0; i<openwindowcount; i++)
		document.body.removeChild(document.getElementById("openwindows"+i));
	}
}//if(workkkkkk)

