// HoneyCo JavaScript 

function newWindow(thePage,w,h,tools,scrolls,size){

	var winWidth = w;
	var winHeight = h;
	var lPos = (screen.width/2)-(winWidth/2);
	var tPos = (screen.height/2)-(winHeight/2);

 	return window.open('include/'+thePage, thePage, 'left='+lPos+', top='+tPos+', width='+winWidth+' ,height='+winHeight+', toolbar='+tools+',scrollbars='+scrolls+', resizable='+size+'');         

}
