﻿/******************************
* set of javascript function 
*
* version: 1.0
* date: 2005.07.20
*******************************/


function winopenfull(url) {
	if( (navigator.appName == "Microsoft Internet Explorer") &&(navigator.platform != "MacPPC") ) {
		p=window.open(url,'plein','fullscreen=yes,menubar=no,resizable=yes,status=no');
	} else {
		p=window.open(url,'plein','top=0,left=0,width='+screen.width+',height='+ screen.height +',menubar=no,resizable=yes,status=no'); 
	}
	p.focus();  
}

function openopener(url) {
	window.opener.location=url;
	this.close();
}