// JavaScript Document
function popitup(url,w,h,scroll) {

	var count= 0;
	count=window.history.length;
	LeftPosition = 50;
	TopPosition = 50;
	w = screen.width;
	h = height=screen.height;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'	
	newwindow=window.open(url,'name',settings);
}
