type="text/javascript">
function show1(){
a11.style.display = "";
a22.style.display = "none";
}
function show11(){
a22.style.display = "";
a11.style.display = "none";
}
>
function openscript(url, width, height){
var win = window.open(url,"openscript",'width=' + width + ',height=' + height + ',top=0,left=0,resizable=0,scrollbars=yes,menubar=no' );
}
 |
首页 | 时尚潮流 | 娱乐音影 | 两性写真 | 数码IT | 休闲生活 | 游戏动漫 | 艺术设计 | 体育竞技 | 汽车旅游 | 商业财经 | 企业商刊 | 综合其它 | 发布 |
 |
|
type="text/javascript">
function ValidateTextboxAdd(box, button)
{
var buttonCtrl = document.getElementById( button );
if ( buttonCtrl != null )
{
if (box.value == "" || box.value == box.Helptext)
{
buttonCtrl.disabled = true;
}
else
{
buttonCtrl.disabled = false;
}
}
}