function profilwin(other_UID)
{
	var windowprops = "location=0,status=0,scrollbars=1,menubar=0,toolbar=0,resizable=1,width=640,height=600,left=20"; 
	window.open(userIndex + "&site=profil&other_UID=" + other_UID,"profil",windowprops);
}

function confirm_delete(text_string)
{
	var is_confirmed = confirm(text_string);
	if (is_confirmed){return true;}
	else { return false;}
}
function onlinewin()
{
	var windowprops = "location=0,scrollbars=1,menubar=0,toolbar=0,resizable=1,width=220,height=330,left=10";
	window.open(userIndex + "&site=online","onlinewindow", windowprops);
}
function openuserpic(media,userstat,sx,sy){	sizo="status=no,toolbar=no,menubar=no,resizable=no,scrollbars=no,width="+sx+",height="+sy;	mywin = window.open("getuserimage.php"+"?media="+media+"&userstat="+userstat+"&x="+sx+"&y="+sy,"_blank", sizo);	mywin.moveTo (0,0);	if (window.focus) { mywin.focus();}}