function mouseover(tempName,tempPic ){
var tempobj = document.getElementById(tempName);
tempobj.src=tempPic;


}
function mouseout(tempName,tempPic ){
var tempobj = document.getElementById(tempName);
tempobj.src=tempPic;

}
 
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function winopen(temp){
	//var temp = "popup.html";
	var xsize = 700;
	var ysize = 500;
	
	wx=xsize;wy=ysize;
	x=(screen.width-wx);
	y=(screen.height-wy);	
	mywindow1=window.open(temp,"main","left="+x+",top="+y+",width="+wx+",height="+wy+",resizable=0,scrollbars=no" );
}
 