
var popUpWin=0;
function openPhoto(r)
{
	var page="../user_area/viewPhoto.php?i="+r;
  popUpWin = open(page,'popUpWin', 'toolbar=no,location=no,titlebar=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=no,copyhistory=yes,width=550,height=700,left=0, top=0,screenX=10,screenY=10');
}
function openVideo(r,t)
{
	var page="viewVideo.php?r="+r+"&t="+t;
  popUpWin = open(page,'popUpWin', 'toolbar=no,location=no,titlebar=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=no,copyhistory=yes,width=450,height=550,left=0, top=0,screenX=10,screenY=10');
}
function openit(r)
{
  var page="expressinterest.php?r="+r;   
  popUpWin = open(page,'popUpWin', 'toolbar=no,location=no,titlebar=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=no,copyhistory=yes,width=700,height=460,left=0, top=0,screenX=10,screenY=10');
//  popUpWin.document.title = "Express Interest";
}
function openFav(r)
{
  var page="favouriteprofile.php?r="+r;
  popUpWin = open(page,'popUpWin', 'toolbar=no,location=no,titlebar=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=no,copyhistory=yes,width=360,height=400,left=0, top=0,screenX=10,screenY=10');
}
function openIgn(r)
{
  var page="ignoredprofile.php?r="+r;   
  popUpWin = open(page,'popUpWin', 'toolbar=no,location=no,titlebar=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=no,copyhistory=yes,width=360,height=400,left=0, top=0,screenX=10,screenY=10');
}
function openBlk(r)
{
  var page="blockedprofile.php?r="+r;   
  popUpWin = open(page,'popUpWin', 'toolbar=no,location=no,titlebar=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=no,copyhistory=yes,width=360,height=430,left=0, top=0,screenX=10,screenY=10');
}
function openMsg(r,t)
{
  var page="sendMessage.php?r="+r+"&t="+t;   
  popUpWin = open(page,'popUpWin', 'toolbar=no,location=no,titlebar=no,directories=no,status=no,menubar=no,scrollbar=yes,copyhistory=yes,width=450,height=750,left=0, top=0,screenX=10,screenY=10');
}
function openFwd(r)
{
  var page="forward.php?r="+r;
   //popUpWin.document.title = "Forward";
  popUpWin = open(page,'popUpWin', 'toolbar=no,location=no,titlebar=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=no,copyhistory=yes,width=475,height=550,left=0, top=0,screenX=10,screenY=10');
}
function openSimilar(r)
{
  var page="similarprofiles.php?r="+r;
   //popUpWin.document.title = "Forward";
  popUpWin = open(page,'popUpWin', 'toolbar=no,location=no,titlebar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,left=0, top=0,screenX=10,screenY=10');
}
function chngPhoto(phname,phid)
{
	var path=phname;
	var pid=phid;
	document.getElementById(pid).src=path
}
function  selectAll()
{
	for(var j=0;j<document.form1.elements.length;j++)
	{
		if(document.form1.elements[j].type=="checkbox")
		{
			if(document.form1.elements[j].name != "checkall")
			{
				if(document.form1.elements[j].checked == true)
				{
					document.form1.elements[j].checked = false;
					continue;
				}
				if(document.form1.elements[j].checked == false)
				{
					document.form1.elements[j].checked = true;
					continue;
				}
			}
		}
	}
}

function checkmsg(faction)
{	
	var flg = 0;
	for(var j=0;j<document.form1.elements.length;j++)
	{	
		if(document.form1.elements[j].type=="checkbox")
		{
			if(document.form1.elements[j].checked == true)
			{ 
				if(document.form1.elements[j].name!="checkall")
					flg=1;
			}
		}
	}
	if(flg != 1)
	{
		alert("Please Select members.");
		return false;
	}
	if(flg == 1)
	{
		if(faction == "E")
			document.form1.action = "expressinterest.php";
		if(faction == "F")
			document.form1.action = "forward.php";
		document.form1.submit();
	}
	
}

