function popUp(theURL,name,w,h,t,m,st,sc,r,X,Y){	
	if ( X == -1) {
		X = screen.availWidth - w ;
		X = X/2;
	}
	if (Y == -1) {
		Y = screen.availHeight -h ;
		Y = Y/2;
	}
	p="width=" + w + ",height=" + h + ",toolbar=" + t + ",menubar=" + m + ",status=" + st + ",scrollbars=" + sc + ",resizable=" + r + "directories=0,screenX=" + X + ",screenY=" + Y + ",left=" + X + ",top=" + Y + ",header=0";
	share=window.open(theURL,name,p);
}

function addBookmark() { 
	var url=document.location;
	var title=document.title;
	 if (window.sidebar) { 
		 window.sidebar.addPanel(title, url,""); 
	 } else if( document.all ) { 
		 window.external.AddFavorite( url, title); 
	 } else if( window.opera && window.print ) { 
		   return true; 
	} 
}

function MailThisPage()	{
	mail_str = "mailto:?subject=Thought this might interest you: " + document.title;
	mail_str += "&body=I thought you might be interested in this: " + document.title;
	mail_str += ". %0A%0AYou can view it at, " + location.href; 
	location.href = mail_str;
}

function addBookmark1(title,url) { 
var url=document.location;
var title=document.title;
	 if (window.sidebar) { 
		 window.sidebar.addPanel(title, url,""); 
	 } else if( document.all ) { 
		 window.external.AddFavorite( url, title); 
	 } else if( window.opera && window.print ) { 
		   return true; 
	} 
} 

function popUp1(theURL,name,w,h,t,m,st,sc,r,X,Y) {
if ( X == -1) {
X = screen.availWidth - w ;
X = X/2;
}
if (Y == -1) {
Y = screen.availHeight -h ;
Y = Y/2;
}
p="width=" + w + ",height=" + h + ",toolbar=" + t + ",menubar=" + m + ",status=" + st + ",scrollbars=" + sc + ",resizable=" + r + "directories=0,screenX=" + X + ",screenY=" + Y + ",left=" + X + ",top=" + Y + ",header=0";
window.open(theURL,name,p);
}