// JavaScript Document

$(document).ready(function(){
    $('.currency').click(function(){
        dialogwindows(260,178,"http://www.zx-printing.com/support/currency.html");
    });
	
	$('.logintan4').click(function(){		
	    $.dialog({
		    "width"       : 280,
			"height"      : 160,
			"title"       : "Login",			
			"type"        : "ajax",
			"href"        :  "http://www.zx-printing.com/e/member/login/login.html"
	    });
	});
	
	$('.unitconversion').click(function(){		
	    $.dialog({
		    "width"       : 650,
			"height"      : 500,
			"title"       : "Unit Conversion",			
			"type"        : "ajax",
			"href"        :  "http://www.zx-printing.com/support/Unit-Conversion.html"
	    });
	});
    
});

function dialogwindows(width,height,url){
    var width1 = (width - 5)+"px";
    var height1 = (height - 5)+"px";
    $.dialog({
        "width"       : width,
		"height"      : height,
		"title"       : "Currency Converter",			
		"type"        : "html",
		"content"     : "<iframe name='Currency' src='"+url+"' allowTransparency='true' style='height:"+height1+"; width:"+width1+"' frameborder='0'>looding...</iframe>"
	    });
}