
function OpenWin3( path, win_name ){
   win=window.open(path, win_name ,"width=500, height=500, scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,favorites=no,resizable=yes");
}

function OpenWin4( path, win_name ){
   win=window.open(path, win_name ,"width=420, height=330, scrollbars=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,favorites=no,resizable=no");
}




/* -------------------------------------------------------------- */

function openBrWindow(theURL,winName,features){
  window.open(theURL,winName,features);
}


/* -------------------------------------------------------------- */


function OpenWin( path, win_name ){
   win=window.open(path, win_name ,"width=750, height=630, scrollbars=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,favorites=no,resizable=yes");
}

function OpenWin1(path, win_name, win_size){
    win=window.open(path,win_name,win_size+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,favorites=no,resizable=no");
}


function OpenWin2(path, win_name, win_size){
    win=window.open(path,win_name,win_size+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,favorites=no,resizable=no");
}

function changeImages(imagename,imagefile) {
if (document.layers) {
	document.images[imagename].src = imagefile; 		// for N4
	}
else if (document.getElementById) {
	document.getElementById(imagename).src = imagefile; 	// for IE5, N6
	document.getElementById(imagename).style.border=0;
	}
else	{
	document.all(imagename).src = imagefile; 			// for IE4
	}
}

function preload(){
	imgarry = new Array();
	for(i=1;i<=10;i++){
		imgarry[i] = new Image;
		imgname = (i!='10')? "0"+i:i;
		imgarry[i].src = imgname + ".jpg";
	}
}









function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();		//print
	}
}