
//Function: open_window2
//Description/Purpose: opens the URL in new window
//Arguments: string - new_url
//Return values: None
function open_window2(new_url) {	
	top_win = (top)?top:self;
	newwin = top_win.open(new_url,"newwin",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=550,height=500');
}


//Function: makeHomePage
//Description/Purpose: opens the default homepage
//Arguments: string - URL
//Return values: None
function makeHomePage(URL)
{
	this.style.behavior='url(#default#homepage)';
	this.setHomePage(URL);
}


//Function: open_window1
//Description/Purpose: opens the URL in new window
//Arguments: string - new_url
//Return values: None
function open_window1(new_url) 
{
	top_win = (top)?top:self;
	email = top_win.open(new_url,"eMail",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=500,height=400');
}



//Function: open_window_demo
//Description/Purpose: opens the URL in new window for demo (winodw is bib)
//Arguments: string - new_url -the page to be shown in opened window
//Return values: None
function open_window_demo(new_url) {	
	top_win = (top)?top:self;
	newwin = top_win.open(new_url,"newwin",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=1000,height=700,left=0,top=0');
}