/*****************************************************
*	Open Window Function
*****************************************************/

function openWin (url,width,height,extras) {
	if (window.open) {
		if (width < 0 || height < 0) {
			newWin = window.open(url,"new_win",extras);
		} else {
			newWin = window.open(url,"new_win","width="+ width +",height="+ height +","+ extras);
		}
	} else {
		return false;
	}
}

function third_party(page)
{
var pWidth = (((parseInt(screen.width) / 2)) - 130)
var pHeight = (((parseInt(screen.height) / 2)) - 130)
bWindow = window.open(page,'newWin',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width=260,height=260,top=" + pHeight + ",left=" + pWidth);
}