// JavaScript Document
$(document).ready(function(){
		$("a").click(function(){
			
			//srcURL = this
			//document.write('<iframe id="_myiframe" name="_myiframe" src="'+srcURL+'" width="100%" height="100%" frameborder="0"> <\/iframe>');
			window.open(this);
			return false;
		});
	});
