var move=false; 
function StartDrag(obj)                       
{
	if(event.button==1&&(event.srcElement.tagName.toUpperCase()=="TD" || event.srcElement.tagName.toUpperCase()=="FONT"))
	{
   obj.setCapture();
   move=true;
  }
}

function Drag(obj)                   
{
	if(move)
	{
	   document.getElementById("win1").style.left=document.documentElement.scrollLeft+ event.clientX - 100;
	   document.getElementById("win1").style.top=document.documentElement.scrollTop+ event.clientY-10;
	}
}

function StopDrag(obj)
{
   obj.releaseCapture();
   move=false;
}
	document.write("<table border='1' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' height='196' width='390' id='win1' style='position:absolute;display:none;filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);'>");
	document.write("<tr><td height='24' align='left' bgcolor='#739ED6' style='cursor:move;' onMousedown='StartDrag(this)' onMouseup='StopDrag(this)' onMousemove='Drag(this)'>กก<b><font color='#ffffff' id='tishi_title' style='cursor:move;' onMousedown='StartDrag(this)' onMouseup='StopDrag(this)' onMousemove='Drag(this)'></font></b></td></tr>");
	document.write("<tr><td align='center'><iframe id='show_denglu' frameborder='no' height='170' width='390' border='0' marginwidth='0' marginheight='0' scrolling='no'></iframe></td></tr>");
	document.write("</table>");
	document.getElementById("win1").style.display="none";
	document.getElementById("win1").style.position="absolute";
function newexam(id,www1)
{
	move=false;
	dir=window.location.href;
	dir=dir.substr(0,dir.lastIndexOf("/")+1);
	document.getElementById("win1").style.display="block";
	document.getElementById('win1').style.top=document.documentElement.scrollTop+ event.clientY-50;
	document.getElementById('win1').style.left=document.documentElement.scrollLeft+ event.clientX-102;
	document.getElementById("show_denglu").src="http://" + www1 + "/wzgl/newexam/login1.jsp?id=" + id + "&dir=" + dir;
}