﻿// JScript File
    var oPopup = window.createPopup();
    var oPopupBody = oPopup.document.body;   
    function main(title,artistname,hw,price,category,medium)
    {          
        oPopupBody.style.backgroundColor = "Silver";
	    oPopupBody.style.border = "solid Orange 2px";  	
	    oPopupBody.style.font="normal 12px Verdana, Arial";    
        oPopupBody.innerHTML ="<br/><a href='#'>&nbsp;&nbsp;"+title+"</a><br/><br/>&nbsp;&nbsp;"+artistname+"<br/>&nbsp;&nbsp;"+hw+"<br/>&nbsp;&nbsp;"+price+"<br/>&nbsp;&nbsp;"+category+"<br/>&nbsp;&nbsp;"+medium;               
        oPopup.show(event.clientX-50,event.clientY, 180, 200, document.body);
    }
    function main1()
    {
        oPopup.hide(event.clientX-50,event.clientY, 180, 200, document.body);
    }
    function Verify()
    {
        var result=confirm("Are You Sure You Want to Delete?");
        if(result)       
	        return true;
	    else	    
	        return false;
    }


