// JavaScript Document

function NewWindow(page,name,w,h,pos){
	if(pos=="center") {
		LeftPosition	= (screen.width)?		((screen.width-w)/2)  : 100;
		TopPosition		= (screen.height)?	((screen.height-h)/2) : 100;
	}
	else { // You can change this position if you want
		LeftPosition=0, TopPosition=20;
	}
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	win=window.open(page,name,settings);
}


/*
Example
<a href="PageName.html" onClick="NewWindow(this.href,'name','750','500','center');" onFocus="this.blur()">
		Text Here
</a>

*/