
//SamplePage Pop Up
function popUp(tgturl, winname, winwidth, winheight, winscroll, winstatus, winresize, xpos, ypos) {
	if (xpos == 'center') {
		xpos = (screen.width - winwidth) / 2;
	}
	if (ypos =='center') {
		ypos = (screen.height - winheight) / 2;
	}
	winoption = "left="+xpos+",top="+ypos+",width="+winwidth+",height="+winheight+",scrollbars="+winscroll+",status="+winstatus+", resizable="+winresize;
	subwin = window.open(tgturl, winname, winoption);
}

