// main javascript file for 

function setWindowStatus( txt ){
	window.status = txt;
	return true;
}

// --------------------------------------------------------------- //

function openWin( url, name, options){
	options += ',left=150,top=200,screenX=150,screenY=150,toolbars=no,status=1,scrollbars=1,menubar=0,resizable=1';

	var w = window.open( url , name, options);
	if( !w ){
		var msg = '';
		msg += 'It appears you have a popup blocker runnning on your browser.\r';
		msg += 'We do not use popups for advertisements or promotional materials.\r';
		msg += 'allow popups on your browser for this website ' + document.domain;
		// alert user
		alert( msg );
	} else {
		// set focus on the window
		w.focus();
	} // end if
}

// --------------------------------------------------------------- //

function cancelIt( url ){
	if( !url )
		window.close();
	else
		location.replace( url );
}