// JavaScript Document
function openpopup(poppage,pWidth,pHeight){
pWidth = pWidth + 10;
pHeight = pHeight + 25;

var popurl=poppage
pSize = "width=" + pWidth + ",height=" + pHeight + ",";
winpops=window.open(popurl,"",pSize)
}
