<!--
function OpenWindow(url, w, h) {
	open(url, "", 'menubar=no,directories=no,location=no,resizable=no, target=viv scrollbars=yes,width='+w +',height='+h);
}

function demo(){
document.all.login_demo.submit();
}

function submitcalc(){
document.all.calculator.submit();
}
function calc_update(){
document.all.calculator.update.value="yes";
document.all.calculator.del.value="";
document.all.calculator.submit();
}

function calc_delete(){
document.all.calculator.update.value="";
document.all.calculator.del.value="yes";
document.all.calculator.submit();
}
function nothing(){
}

function showpic (file,w,h,title) {
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=no";
	myWin= open("", name,win);
	myWin.document.open();
	myWin.document.write("<html><head><title>"+title);
	myWin.document.write("</title></head><body topmargin=0 leftmargin=0 bottommargin=0 rightmargin=0>");
	myWin.document.write("<img src='"+file+"' width="+w+" height="+h+" border=0 alt='"+title+"'>");
	myWin.document.write("</body></html>");
}
//-->
