/********************
*   Dhtml Modal Window
*********************/
var loginPopObj;
function dhtmlModalWindow(target, title, width, height)
{
   _height=parseInt(height)+25;
   _width=parseInt(width);
	if(navigator.appName=='Microsoft Internet Explorer'){
	popupwin = dhtmlmodal.open('loginpopupbox', 'iframe', target,title, 'center=1, height='+(_height)+'px, resize=0, scrolling=0, width='+(_width)+'px', '');
	}else{ 
	popupwin = dhtmlmodal.open('loginpopupbox', 'iframe', target,title, 'center=1, height='+height+'px, resize=0, scrolling=0, width='+width+'px', '');
	}
   loginPopObj=popupwin;
  openpopupwindow = popupwin;
}

function productModalPreview(target, title, width, height)
{                        
    //alert(target);
   // _height=parseInt(height)+10;
   _height=10;
	if(navigator.appName=='Microsoft Internet Explorer'){
	    popupwin_pre = dhtmlmodal.open('popupbox', 'iframe', target,title, 'center=1, height='+(_height)+'px, resize=0, scrolling=0, width='+width+'px', '');
        
	}else{
	    popupwin_pre = dhtmlmodal.open('popupbox', 'iframe', target,title, 'center=1, height='+height+'px, resize=0, scrolling=0, width='+width+'px', '');
	}
//     popupwin_pre.moveTo("middle",h);
   openpopupwindow = popupwin_pre;

}

