/* 
	Last modified: David Seow
	Date: 09:00 18/12/2007
	Version: v1.0.3
*/


/* Refresh parent window with stated URL */
function ChangeParentDocument(url) {
		  opener.location = url;
		}
		
/* Refresh parent window with stated URL */
function jumpTo(path) {
	window.location = path ;
}

/* Open up a page in popup window */
function openBrWindow(theURL,winName,features) { //v2.0
 // var features = 'width=370,height=325';
  
  window.open(theURL,winName,features);
  
 
}