function printWindow(){
	if(top.Main_Frame){
		top.Main_Frame.focus();
		top.Main_Frame.print();
	}
	else{
		top.focus();
		top.print();
	}
}	