﻿// JScript File


    function popUpGallery(URL) {
        day = new Date();
        id = day.getTime();
        eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=660,height=700,left = 590,top = 275');");
    }
    
    
    function openReSizableWindowNew(mode,url,name) {
	name = 'w' + Math.round(Math.random()*(1000000000));
	w = screen.width - 10;
	h = screen.height - 40;
	
	if (mode == 'main') 
	    {nurl = url + '?fm=2'}
	else 
	    {nurl = url + '&fm=2'}
	
	window.open(nurl,name,'toolbar=no,menubar=no,resizable=yes,scrollbars=yes,left=0,top=0,width=' + w + ',height=' + h);
    }
    
    
    function clearBox(inputbutton, fillValue){
	    if (inputbutton.value==fillValue) {
		    inputbutton.value=''
	    }
    }
    function fillBox(inputbutton, fillValue){
	    if (inputbutton.value=="") {
		    inputbutton.value=fillValue
	    }
    }
    
    
    
    


