function popupTermsNConditions(url,windowname){
	var href = "http://"+url+"/TermsConditions.do";
	popup(href,windowname);
	return false;
}

function popup(href, windowname){
	if (! window.focus)return true;
	window.open(href, 
				windowname, "resizable=yes,scrollbars=yes,menubar=no,toolbar=no,locationbar=no,status=no,width=600,height=600");
	return false;
}

function popUp(path){		
	window.open(path,"popup","resizable=yes,scrollbars=yes,menubar=no,toolbar=no,locationbar=no,status=no,width=600,height=600");
}

