var newWin = ''
function orphans(url) {
	if (newWin.location && !newWin.closed){
		newWin.location.href=url;
		newWin.focus();}
	else {
     newWin=window.open(url,'indonesian_orphans','width=800,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=400,height=400,resizable=1,top=300,left=500');
	}
}
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');
	 }
}
