jQuery.noConflict();

jQuery(document).ready(function(){
	var username=jQuery.url.param("username");
	var password=jQuery.url.param("password");
	if(username!=""&&password!="")
	{
		var domain="https://www.physiotec.org/prescription.php?username="+username+"&password="+password;
		jQuery("#physiotecIframe").attr("src",domain);
	}
	else
	{
		var domain="https://www.physiotec.org/prescription.php";
		jQuery("#physiotecIframe").attr("src",domain);
	}
});
