document.write(""); function idialog(title,url,width,height,scroll) //iframe弹出层,width和height支持百分比字符 { if(typeof(scroll)=="undefined") { scroll="auto"; } showiframe(url,percentonumber(width,"width"),percentonumber(height,"height"),title,scroll); } function closedialog(back) //关闭弹出层 { closepop(); if(typeof(back)!="undefined") { if(back=="refresh") { location.reload(); } else { eval(back); } } }