﻿/* create new popup without controls and center on screen */
/* to use: <a href="javascript:new_win('page.aspx',650,400);">Open</a> */

function new_pop(lnk,w,h) {
	leftPos = 0
	topPos = 0
	if (screen) {
		leftPos = (screen.width / 2) - (w/2)
		topPos = (screen.height / 2) - (h/2)
	}
	ElementWindow = window.open(lnk,'PROSOCO','width='+w+',height='+h+',left='+leftPos+',top='+topPos+',scrollbars=yes,resizable=yes');
}
/* create new window and center on screen*/
function new_win(lnk,w,h) {
	leftPos = 0
	topPos = 0
	if (screen) {
		leftPos = (screen.width / 2) - (w/2)
		topPos = (screen.height / 2) - (h/2)
	}
	ElementWindow = window.open(lnk,'PROSOCO','width='+w+',height='+h+',left='+leftPos+',top='+topPos+',toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,status=yes');
}
