function viewLocation(formId)
{
	cid = "82235";
	action = "viewLocation";
	dgURL = "http://dg.travelnow.com/index.jsp";

	FulldgURL = dgURL + "?cid=82235&action=viewLocation&formId=" + formId;
	OpenDetailWindow(FulldgURL);
}

function OpenDetailWindow(dgURL){
	var theDialog
	winWidth = 800;
	winHeight = 480;
	centerX= (800 - winWidth) / 2
	centerY= (600 - winHeight) / 2
	var dgWin = window.open(''+dgURL+'', theDialog, 'width='+ winWidth+',height=' + winHeight + ',title=no,top=' + centerY + ',left='+ centerX + ',scrollbars=yes,toolbar=yes'); 
	dgWin.focus() ;
}