﻿


var intNameID =0;


function openChild(url, width, height) 
{
	leftC = (screen.width - width) / 2;
	topC = (screen.height - height) / 2;
	/*	to open on Multi pop-up window	*/
	intNameID = intNameID + 1;
	var x1 = window.open(url, 'x_' + intNameID, "");
	


}
function openChild1(url, width, height) 
{
	leftC = (screen.width - width) / 2;
	topC = (screen.height - height) / 2;
	/*	to open on Multi pop-up window	*/
	intNameID = intNameID + 1;
	var x1 = window.open(url, 'x_' + intNameID, "width=" + width + ", height=" + height + ",top=" + topC + ",left=" + leftC + ",location=no, menubar=no, status=no, toolbar=no, scrollbars=0,resizable=no");
	


}

function openChildScroll(url, width, height) 
{
	leftC = (screen.width - width) / 2;
	topC = (screen.height - height) / 2;
	window.open(url, null, "width=" + width + ", height=" + height + ",top=" + topC + ",left=" + leftC + ",location=no, menubar=no, status=no, toolbar=no, scrollbars=1,resizable=no");
}






