function redirect( loc )
{	
	location.href = loc;
}

function redirectConfirm( loc )
{
	var agree = confirm("Are you sure you want to delete?");
	if ( agree )	
	{
		//return true;
		location.href = loc;
	}
	else
	{	
		return false;
	}
}
function sendToSocialSite(str){
	popupWin = window.open(str,'mywindow','width=900,height=500,left=150,right=400,top=0');
  	//mywindow.moveTo(0,0);
}

