/** 
* add here all js functions that will be shared across the app. 
**/

//usage : <A  onclick="AutoCenterPopUp('../PopupLog.asp','logWindow',320,330);return false;" href="#">OK</A>
function AutoCenterPopUp(mypage,myname,w,h){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
//alert 
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition
win = window.open(mypage,myname,settings)
}
//