var popup = null;

function spawnPopup(width, height, szURL)
{
	if (popup != null)
		popup.close();

	var x = Math.floor( (screen.width / 2) - (width / 2) );
	var y = Math.floor( (screen.height / 2) - (height / 2) );

	var sArgs = "width=" + width + ",height=" + height + ", left=" + x + ", top=" + y + ", scrollbars=yes";

	popup = window.open(szURL, "sor_comments", sArgs);
}

function viewComments(dwEntryID, szType)
{
	spawnPopup(400, 550, "http://www.sonofrust.com/view_comments.asp?id=" + dwEntryID + "&type=" + szType);
}


function writeEmail(szTo, szSubject)
{
	var szURL = "http://www.sonofrust.com/write_email.asp";
	
	if(szTo != undefined)
		szURL += "?to=" + szTo;
		
	if(szSubject != undefined)
		szURL += "&subject=" + szSubject;
	
	spawnPopup(500, 500, szURL);
}
