// JavaScript Document
function openNewWindow(iWidth, iHeight, sPage){
	//alert("Hey!" + iWidth);
	/*URL, namde spec 'width=200,height=100', replace*/
	specItem = "width=" +iWidth +",height=" +iHeight 
	window.open(sPage, '', specItem);
}