
/*
popup window
*/

function openWindow(theURL,winName,winWidth,winHeight,features) {
  var w = (screen.width - winWidth)/2;
  var h = (screen.height - winHeight)/2 - 50;
  features = features+',width='+winWidth+',height='+winHeight+',top='+h+',left='+w;
  window.open(theURL,winName,features);
}


/*
chatscreen
*/
function window_live(url, name){
   var livewnd = window.open(url, name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=750,height=450');
   livewnd.focus();
}

/*
remote pop up
*/
function remote(model_id){

	win2=window.open("profile.php?model_id="+model_id,"","width=650,height=505,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no")
	win2.creator=self
}

function remote2(url){
window.opener.location=url
self.close()
}

/*
clear input
*/
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}