<!--
window.focus()
var message="Apologies for the inconvenience caused.\nThe funcion has been disabled for copyright issues.\nRegrets - Team@artkarat.com";

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

var my_icode;

function enlarge(icode) {
	my_icode = icode;
	var w = window.open("/usercontrols/enlargeview.aspx","","width=500,resizable=1,height=500,top=0,left=10,toolbar=0,scrollbars=1");
}
// --> 
