function open_pm(name,url)
	{
		OpenIt = this.open('', "name", "toolbar=yes,location=no,scrollbars=yes,resizable=yes,titlebar=yes,status=no,directiories=no,width=600,height=450,screenX=0,screenY=0");
		OpenIt.focus();
		OpenIt.location.href = url;
	}
	
function openWindow(href, target, features) {
	var F1 = window.open(href, target, 'toolbar=yes,location=no,scrollbars=yes,resizable=yes,titlebar=yes,status=no,directiories=no,width=600,height=450,screenX=0,screenY=0');
	F1.focus();
}
