﻿// JScript File
function mouseOverImage(inputImg) {
    inputImg.src = inputImg.src.replace("_normal", "_over");
}
function originalImage(inputImg) {
    inputImg.src = inputImg.src.replace("_over", "_normal");
}
function addbookmark()
{
	window.external.AddFavorite('http://www.miehmieh.com', 'Mieh-Mieh Community');
}
function openPopUpWindow(url,height,width) {  
    var w = 800, h = 600; 
    try{
       w = screen.width;
       h = screen.height;
    }catch(e) {
    }
    var leftPos = (w-width)/2, topPos = (h-height)/3;
    var features = 'top='+topPos+',bottom=50,left='+leftPos+',right=50,width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes';
    var newWindow= window.open(url,'miehmap',features);    
}