jQuery.jPrintArea=function(el1){
var iframe=document.createElement('IFRAME');
var doc=null;
$(iframe).attr('style','position:absolute;width:0px;height:0px;left:-500px;top:-500px;');
document.body.appendChild(iframe);
doc=iframe.contentWindow.document;
var links=window.document.getElementsByTagName('link');
for(var i=0;i<links.length;i++){
if(links[i].rel.toLowerCase()=='stylesheet'){
doc.write('<link type="text/css" rel="stylesheet" href="'+links[i].href+'"></link>');
}
}
doc.write('<div class="'+$(el1).attr("class")+'">'+$(el1).html()+'</div>');
doc.write("<p class='copyright' style='text-align:center;'>&copy; "+myDate+" Alcon Japan Ltd. All rights reserved</p>");
doc.close();
//alert("print1");

iframe.contentWindow.focus();
iframe.contentWindow.print();
chk_browser();
document.body.removeChild(iframe);
}
$(document).ready(function(){
	$('.link').click(function(){
		$.jPrintArea('#print_area');
	});
});
function chk_browser(t){
	str   = navigator.appName.toUpperCase();
	result= "不明・・・";
	if (str.indexOf("NETSCAPE") >= 0) result = "1";
	if (str.indexOf("EXPLORER") >= 0) result = "0";
	if(result=="1"){
		wait(1);
	}
}