var newWin = ''
function orphan(url) {
	if (newWin.location && !newWin.closed){
		newWin.location.href=url;
		newWin.focus();}
	else {
     newWin=window.open(url,'indonesian_orphans','width=750,height=650,resizable=1,top=300,left=350,scrollbars=yes,menubar=yes,location=yes,toolbar=yes');
	     }
}
function popWin(url) {
	if (newWin.location && !newWin.closed){
		newWin.location.href=url;
		newWin.focus();}
	else {
    newWin=window.open(url,'orphans','width=300,height=300,resizable=1,top=300,center=150');
	}
}
function newsWin(url){
	if (newWin.location && !newWin.closed){
		newWin.location.href=url;
		newWin.focus();}
	else {
 	newWin=window.open(url,'news','width=750,height=650,resizable=1,top=300,left=350,scrollbars=yes,menubar=yes,location=yes,toolbar=yes');
	 }
}
