// JavaScript Document
function openWindow(pag,w,h,sc,resiz){
	l = (screen.width) ? (screen.width-w)/2 : 0;
	t = (screen.height) ? (screen.height-h)/2 : 0;
	hwnd = window.open(pag,'asociadas','scrollbars='+sc+',resizable='+resiz+',width='+w+',height='+h+',top='+t+',left='+l+',status=true')
}
