/******************************************************************************
* comments.js                                                                **
*                                                                            **
* contains two functions                                                     **
* Function 1 for netscape                                                    **
* Function 2 for IE                                                          **
******************************************************************************/

function ShowModal(tPage){
	//return window.showModalDialog(tPage);
	return window.showModalDialog(tPage,
						   "Dialog Arguments Value",
						   "dialogHeight: 300px; dialogWidth: 500px; dialogTop: 265px; dialogLeft: 300px; center: Yes; help: No; resizable: No; status: No;");
}

var DocRemote = 0;	
function makeRemote(site){
		DocRemote = window.open(site,"Comments","top=100,left=120,width=500,height=400,scrollbars=yes,toolbar=no,menubar=no,resizable=yes");
		DocRemote.focus();
}

var DocRemote = 0;	
function showPic(site){
		DocRemote = window.open(site,"Photo","top=100,left=120,width=120,height=180,scrollbars=no,toolbar=no,menubar=no,resizable=no");
		DocRemote.focus();
}
var DocRemote = 0;	
function showContactPic(site){
		DocRemote = window.open(site,"Photo","top=100,left=120,width=125,height=124,scrollbars=no,toolbar=no,menubar=no,resizable=no");
		DocRemote.focus();
}
