/**
 * @author azt3k
 */

function popUp(url,w,h) {
	if(w==null || w==0 || w==''){w='640'}
	if(h==null || h==0 || h==''){h='800'}
	var params = 'scrollbars=1, height=' + w + ',width=' + h;
	newwindow=window.open(url,'print',params);
	newwindow.resizeTo(w,h)
	if (window.focus) {newwindow.focus()}
	return false;
}

