// EXT IMAGE
function extImg(img_url) {        
    html='<html><head><title>K*Net - connect the singing world</title><body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"><center><img src="'+img_url+'" border=0 name="imageF" onLoad="window.resizeTo(document.imageF.width+30,document.imageF.height+58)"></center></body></html>';
    popupImage = window.open('','img','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1');
    popupImage.document.open();
    popupImage.document.write(html);
    popupImage.document.close();
}

// EXT WIN
function openWindow(url, w, h, sbar, rs) {
   var windowprops = "width=" + w + ",height=" + h + ",scrollbars=" + sbar + ",resizable=" + rs;
   popup = window.open(url,'_blank',windowprops);
}


function CallLogin()
{
	var f = document.forms['loginform'];
	if (f.loginemail.value != "" && f.loginpassword.value != "")
		f.submit();		
}


function CallLogout()
{
	var f = document.forms['logoutform'];
	f.submit();		
}

