function popUp(url,name,width,height){
		var win = window.open(url,name,'toolbar=no,width='+width+',height='+height+',directories=no,status=no,scrollbars=no,resize=no,menubar=no');
		win.focus();
}

function OpenWin(url,name,width,height){
		var win = window.open(url,name,'toolbar=no,width='+width+',height='+height+',directories=yes,status=yes,scrollbars=yes,resize=yes,menubar=yes');
		win.focus();
}

function redirect(url){

	var test = window.opener.parent.location.href;
	alert(test.length);
	if(test.length > 0)	{
		window.opener.parent.location.href = url;
		self.close();
	}

}


