﻿$(document).ready(function () {
    $("img").each(function () {
        $(this).attr({ 'title': function () { return this.alt } });
    });    

});
function OpenNewWindow(url,width,height)
{
	window.open(url,'mywindow',"width="+width+',height='+height+'"');
}
