function setFormValue(id,value,id2,value2){
 	if(id){
		if(document.getElementById(id)){
			document.getElementById(id).value=value;
		}
	}
	
	if(id2){
		if(document.getElementById(id2)){
			document.getElementById(id2).value2=value2;
		}
	}
}

function EUCSendToFriend(pageID, linkname,title,param1)
{
    var w = 520;
    var h = 440;
    ColdFusion.Window.create('Window'+pageID, title
    ,'/include/ajax/form_loader_ajax.cfm?pageID='+pageID+'&link='+linkname+'&param1='+param1,
    {x:500,y:300,height:h,width:w,modal:true,closable:true,draggable:true,resizable:true,center:false,initshow:true,minheight:200,minwidth:200 })
}

function EUCViewNotices(c_id, linkname,title)
{
    var w = 520;
    var h = 440;
    ColdFusion.Window.create('Window'+c_id, title
    ,'/include/ajax/displayPersonalNotices.cfm?c_id='+c_id+'&link='+linkname,
    {x:0,y:100,height:h,width:w,modal:true,closable:true,draggable:true,resizable:true,center:true,initshow:true,minheight:200,minwidth:200 })
}

function EUCViewMyCalendar(c_id, dt,title)
{
    var w = 520;
    var h = 440;
    ColdFusion.Window.create('Window'+c_id, title
    ,'/include/ajax/displayCalendarEvents.cfm?c_id='+c_id+'&dt='+dt,
    {x:0,y:100,height:h,width:w,modal:true,closable:true,draggable:true,resizable:true,center:true,initshow:true,minheight:200,minwidth:200 })
}

