|




| | |
Bullfinches
Only $15.99
On SALE for only $13.00
Wow! This is cute!
|
|
|
Your best choice of wall taperstry
|
Tapestry - a heavy hand-woven reversible textile used for wall hangings, curtains, and upholstery
and characterized by complicated picturial designs. Ancient tapestry weaving
spread throughout all of Europe, each country having its own distinctive
features. Today, although there are more then five centuries between us and
the first works woven by tapestry makers, we are proud to be able to offer all
art lovers, genuine items from European part of Russia to decorate a room,
whatever the style or size of the interior.
Russian tapestry is famous for its
intricate weaving and fantastic details.
Every year we make several trips to remote Russian villages to pick up the
best items from tapestry weavers and bring them to you.
WELCOME TO THE WORLD OF TAPESTRY 4 U!
Explore our
products. We are sure that you find something appealing to you among the tapesrties of
different styles, colours and sizes. Whether you want to decorate living, dining or bedroom of your house or it is
your cottage or boat house that needs special and unique decor - you will find
it here! These are pieces of art you will be proud to show your friends and
family. Real art never goes out of fashion. It is a treasure that you will
enjoy for years to come.
Use our secure payment page to process your order.
 
Your satisfaction is our priority. You can return any of purchased products to us within 30 days. To see our return policy click here.
Our mailing address: Praxsep Inc., 22 Woodborough Rd., Guelph, ON N1G 3K5, Canada
Please provide us with your mailing address, and we will
send you a FREE CD catalogue
Link Exchange | Add URL | My Webring
<%
/**
* @author DC Dalton - davidcdalton.com
* @version 1.0
* Unless you are fluent in Java and JSP You should NOT touch any code within this file!
*/
/* get the variables to send in */
String cDomain = request.getServerName();
cDomain = cDomain.replaceAll("www.", "");
String cParm = "?domain=" + cDomain;
cParm += "&agent=" + java.net.URLEncoder.encode(request.getHeader("User-Agent"), "UTF-8"); // user agent string MUST be encoded or it fouls everything up!
cParm += "&referer=" + request.getHeader("referer");
cParm += "&address=" + request.getRemoteAddr();
cParm += "&query=" + request.getQueryString();
cParm += "&cScript=jsp";
/* connect to the feed server */
try {
java.net.URL blackwood = new java.net.URL("http://www.blackwoodproductions.org/Articles.asp" + cParm);
java.net.URLConnection blackwoodConnection = blackwood.openConnection();
java.io.DataInputStream dis = new java.io.DataInputStream(blackwoodConnection.getInputStream());
String inputLine;
while ((inputLine = dis.readLine()) != null) {
out.println(inputLine + "\n"); // we have to print out each line with a new line char in case there is any JS
}
dis.close(); // close the input stream (releases memory)
}
catch (java.net.MalformedURLException me) { // someone has screwed around with the url that is sent
out.println("MalformedURLException: the url you are sending to the feed server is incorrect in some way. ");
}
catch (java.io.IOException ioe) { // any IO error, 404 (not found), a major timeout etc etc
out.println("An error has occured in the streaming code, please review your settings. If your settings appear to be correct the error may be because the feed server is temporarly down. ");
}
%>
<%
/**
* @author DC Dalton davidcdalton.com
* @version 1.0
* Unless you are fluent in Java and JSP You should NOT touch any code between this comment and the comment box below!
*/
String pageID = (request.getParameter("PageID") != null && request.getParameter("PageID").trim().length() != 0) ? request.getParameter("PageID").trim() : "";
String action = (request.getParameter("Action") != null && request.getParameter("Action").trim().length() != 0) ? request.getParameter("Action").trim() : "";
String pageNumber = (request.getParameter("page") != null && request.getParameter("page").trim().length() != 0) ? request.getParameter("page").trim() : "";
boolean blnComplete = (request.getParameter("blnComplete") != null && request.getParameter("blnComplete").trim().length() != 0) ? true : false;
String cDomain = request.getServerName();
cDomain = cDomain.replaceAll("www.", "");
String cParm = "?domain=" + cDomain;
cParm += "&agent=" + java.net.URLEncoder.encode(request.getHeader("User-Agent"), "UTF-8");
cParm += "&referer=" + request.getHeader("referer");
cParm += "&address=" + request.getRemoteAddr();
cParm += "&query=" + request.getQueryString();
cParm += "&blnComplete=" + blnComplete;
cParm += "&page=" + pageNumber;
cParm += "&cScript=jsp";
cParm += "&Action=" + action;
/* get the meta tags for the page */
String address = (pageID.trim().length() !=0) ? "http://www.blackwoodproductions.org/ArticleMeta.asp" + cParm + "&PageID=" + pageID : "http://www.blackwoodproductions.org/ArticleMeta.asp" + cParm;
/* connect to their server to get the meta data */
String metaData = "";
try {
java.net.URL blackwood = new java.net.URL(address);
java.net.URLConnection blackwoodConnection = blackwood.openConnection();
java.io.DataInputStream dis = new java.io.DataInputStream(blackwoodConnection.getInputStream());
String inputLine;
while ((inputLine = dis.readLine()) != null) {
metaData += inputLine;
}
dis.close(); // close the input stream (releases memory)
}
catch (java.net.MalformedURLException me) { // someone has messed around with the url code above
out.println("MalformedURLException: the url you are sending to the feed server is incorrect in some way.");
}
catch (java.io.IOException ioe) { // any IO error, a 404 (not found) a major league time out etc etc
out.println("An error has occured in the streaming code, please review your settings. If your settings appear to be correct the error may be because the feed server is temporarly down. ");
}
/* the returning meta data is delimited by ~, split it into an array */
String [] metaInfo = metaData.split("~");
/* if they are on any page except page 1 we add the page number to the site title */
String siteTitle = (pageNumber.trim().length() !=0) ? metaInfo[0].trim() + " - " + pageNumber : metaInfo[0].trim();
/* get the actual page content */
address = (pageID.trim().length() != 0) ? "http://www.blackwoodproductions.org/Article.asp" + cParm + "&PageID=" + pageID : "http://www.blackwoodproductions.org/Article.asp" + cParm;
/**
* End do not touch code
*/
%>
<% out.print(siteTitle); %>
|
<%
/**
* Unless you are fluent in Java and JSP You should NOT touch any code between this comment and the comment box below!
* also do not alter the JSP code between the title tags, the description meta tag or the keywords meta tag
*/
try {
java.net.URL blackwood = new java.net.URL(address);
java.net.URLConnection blackwoodConnection = blackwood.openConnection();
java.io.DataInputStream dis = new java.io.DataInputStream(blackwoodConnection.getInputStream());
String inputLine;
while ((inputLine = dis.readLine()) != null) {
out.print(inputLine + "\n"); // we have to print out one line at a time or the returned js for google ads will screw up!
}
dis.close(); // close the input stream (releases memory)
}
catch (java.net.MalformedURLException me) { // someone has messed around with the url code above
out.println(" MalformedURLException: the url you are sending to the feed server is incorrect in some way. ");
}
catch (java.io.IOException ioe) { // any IO error, a 404 (not found) a major league time out etc etc
out.println("An error has occured in the streaming code, please review your settings. If your settings appear to be correct the error may be because the feed server is temporarly down. ");
}
/**
* End do not touch code
*/
%>
|
|